home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Super OZ Shareware: Games
/
SuperOZ Shareware, Games Volume 1.iso
/
BOARD
/
XDOWN28.ZIP
/
SETUP.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-01-20
|
866b
|
38 lines
@echo off
:LOOP
cls
echo PLEASE SELECT YOUR PRINTER (1-4)
echo --------------------------------
echo 1 - Epson 9-Pin Dot Matrix
echo 2 - Epson 24-Pin Dot Matrix
echo 3 - Hewlett Packard LaserJet
echo 4 - Hewlett Packard DJ500C
echo 5 - PostScript
getans
if errorlevel 53 goto POST
if errorlevel 52 goto DJ5C
if errorlevel 51 goto HPLJ
if errorlevel 50 goto EP24
if errorlevel 49 goto EP09
goto LOOP
:POST
copy XWD2PS.EXE XWD2LPT1.EXE
goto DONE
:DJ5C
copy XWD2DJ5.EXE XWD2LPT1.EXE
goto DONE
:HPLJ
copy XWD2HPL.EXE XWD2LPT1.EXE
goto DONE
:EP24
copy XWD2EP24.EXE XWD2LPT1.EXE
goto DONE
:EP09
copy XWD2EP9.EXE XWD2LPT1.EXE
:DONE
cls
echo ***********************************
echo CROSSDOWN INSTALLATION IS COMPLETE!
echo TYPE XDOWN [ENTER] TO RUN.
echo ***********************************